home *** CD-ROM | disk | FTP | other *** search
/ Giga Pack / Giga Pack CD2.iso / strategy / wdetct10 / wdtlib.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-18  |  589 b   |  17 lines

  1. /*===========================================================================*/
  2. /*  LibMain for winDetective resources (c) 1992 Drazof Industries            */
  3. /*---------------------------------------------------------------------------*/
  4. /*  - generic module, include in makefile as wdtlib.c                        */
  5. /*===========================================================================*/
  6.  
  7. #include <windows.h>
  8.  
  9. int FAR PASCAL LibMain (HANDLE hInst, WORD wDataSeg, WORD wHeapSize,
  10.                                 LPSTR lpszCmdLine)
  11. {
  12.     if (wHeapSize > 0)
  13.         UnlockData (0);
  14.     return 1;
  15. }
  16.  
  17.